<%
dim strSql,rs,i,PageNo,ss
if request("id")="" then
out("参数出错了!")
response.end
end if
strSql="select * from [house_hack] where id="&request("id")
set rs=Server.CreateObject("ADODB.RecordSet")
rs.open strSql,conn,3,3
if rs.eof then
out("参数出错了!")
else
%> 编号 | <%=rs("hx1")%> |
姓名 | <%=rs("pb")%> |
性别 | <%=rs("man")%> |
工作单位 | <%=rs("bus")%> |
培训时间 | <%=rs("fz_date")%> |
继续教育时间 | <%=rs("rj")%> |
| |
| |
| |
<%end if%> |
| |